home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-038.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12359);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2002-1395");
  13.  
  14.  name["english"] = "RHSA-2003-038: im";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated Internet Message packages are available that fix the insecure
  21.   handling of temporary files.
  22.  
  23.   [Updated 9 April 2003]
  24.   Added packages for Red Hat Linux Advanced Workstation, Red Hat Enterprise
  25.   Linux ES, and Red Hat Enterprise Linux WS.
  26.  
  27.   Internet Message (IM) consists of a set of user interface commands and
  28.   backend Perl5 libraries to integrate email and the NetNews user interface.
  29.   These commands are designed to be used from both the Mew mail reader for
  30.   Emacs and the command line.
  31.  
  32.   A vulnerability has been discovered by Tatsuya Kinoshita in the way two IM
  33.   utilities create temporary files. By anticipating the names used to
  34.   create files and directories stored in the /tmp directory, it may be
  35.   possible for a local attacker to corrupt or modify data as another user.
  36.  
  37.   Users of IM are advised to install these packages which contain a
  38.   backported patch to correct these issues.
  39.  
  40.  
  41.  
  42.  
  43. Solution : http://rhn.redhat.com/errata/RHSA-2003-038.html
  44. Risk factor : High';
  45.  
  46.  script_description(english:desc["english"]);
  47.  
  48.  summary["english"] = "Check for the version of the im packages";
  49.  script_summary(english:summary["english"]);
  50.  
  51.  script_category(ACT_GATHER_INFO);
  52.  
  53.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  54.  family["english"] = "Red Hat Local Security Checks";
  55.  script_family(english:family["english"]);
  56.  
  57.  script_dependencies("ssh_get_info.nasl");
  58.  
  59.  script_require_keys("Host/RedHat/rpm-list");
  60.  exit(0);
  61. }
  62.  
  63. include("rpm.inc");
  64. if ( rpm_check( reference:"im-140-3.21AS.3", release:"RHEL2.1") )
  65. {
  66.  security_hole(0);
  67.  exit(0);
  68. }
  69.  
  70. if ( rpm_exists(rpm:"im-", release:"RHEL2.1") )
  71. {
  72.  set_kb_item(name:"CAN-2002-1395", value:TRUE);
  73. }
  74.  
  75. set_kb_item(name:"RHSA-2003-038", value:TRUE);
  76.